home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / internet / other / ka9q / nhclb120.zoo / heard.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-02-11  |  345 b   |  20 lines

  1. #define HEARD_IP        0x01
  2. #define HEARD_ARP        0x02
  3. #define HEARD_NETROM    0x04
  4.  
  5. struct heard_stuff {
  6.     struct ax25            info;
  7.     unsigned long        htime;
  8.     int16                flags;
  9.     short                next;
  10. };
  11.  
  12. #define MAX_HEARD 22  /* too many scrolls newest off screen */
  13.  
  14. struct ax25_heard {
  15.     int16        enabled;
  16.     int16        cnt;
  17.     short        first;
  18.     struct heard_stuff    list[MAX_HEARD];
  19. };
  20.